From 254e10d860a51fc779896e9670260263ca9cf87d Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Wed, 26 May 1993 22:22:58 +0000 Subject: [PATCH] Report .elc bogosities more clearly. --- make-dist | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/make-dist b/make-dist index f0c8805bc83..34fbf0f7312 100755 --- a/make-dist +++ b/make-dist @@ -90,7 +90,11 @@ fi ### Check for .elc files with no corresponding .el file. ls -1 lisp/*.el | sed 's/\.el$/.elc/' > /tmp/el ls -1 lisp/*.elc > /tmp/elc -comm -13 /tmp/el /tmp/elc +bogosities="`comm -13 /tmp/el /tmp/elc`" +if [ "${bogosities}" != "" ]; then + echo "The following .elc files have no corresponding .el files:" + echo "${bogosities}" +fi echo "Creating staging directory: \`${tempparent}'" mkdir ${tempparent} -- 2.30.2